Views [dbo].[vSoaEventSummary]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Created10:48:15 AM Thursday, July 14, 2011
Last Modified1:49:26 PM Thursday, September 22, 2011
Columns
Name
EventId
ParentEntityTypeName
ParentEntityId
Name
Description
CategoryId
CategoryName
Status
SQL Script

CREATE VIEW [dbo].[vSoaEventSummary]
AS  
SELECT [Meet_Master].[MEETING] AS [EventId],
       'Public' AS [ParentEntityTypeName],
       'Public Groups' AS [ParentEntityId],
       [Meet_Master].[TITLE] AS [Name],
       CAST([Meet_Master].[DESCRIPTION] AS VARCHAR(6000)) AS [Description],
       [Meet_Master].[MEETING] AS [CategoryId],
       [Meet_Master].[MEETING] AS [CategoryName],
       [Meet_Master].[STATUS] AS [Status]
  FROM [dbo].[Meet_Master]



GO
Uses
Used By